home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / DESKLIBC / SOURCES.ZIP / DeskLib / !DLSources / Libraries / Sprite / DLLClient / MkClientOs
Encoding:
Text File  |  1995-09-04  |  2.6 KB  |  128 lines

  1.  
  2. ObjectFiles    =        \
  3.             o.LoadFile    \
  4.             o.LoadFiles    \
  5.             o.MemSize    \
  6.             o.MemSizeIcn    \
  7.             o.02ScrSave    \
  8.             o.03ScrLoad    \
  9.             o.08ReadCont    \
  10.             o.09InitArea    \
  11.             o.10Load    \
  12.             o.11Merge    \
  13.             o.12Save    \
  14.             o.13GetName    \
  15.             o.15Create    \
  16.             o.16GetUser    \
  17.             o.24Select    \
  18.             o.25Delete    \
  19.             o.26Rename    \
  20.             o.27Copy    \
  21.             o.29CreateMa    \
  22.             o.30RemoveMa    \
  23.             o.31InsertRo    \
  24.             o.32DeleteRo    \
  25.             o.33FlipX    \
  26.             o.34PutUser    \
  27.             o.35Append    \
  28.             o.37CreatePa    \
  29.             o.37ReadPale    \
  30.             o.37RemovePa    \
  31.             o.40ReadInfo    \
  32.             o.41ReadPixe    \
  33.             o.42WritePix    \
  34.             o.43ReadMask    \
  35.             o.44WriteMas    \
  36.             o.45InsertCo    \
  37.             o.46DeleteCo    \
  38.             o.47FlipY    \
  39.             o.49PlotMask    \
  40.             o.50PlotMask    \
  41.             o.52PlotScal    \
  42.             o.53PlotGrey    \
  43.             o.60Redirect    \
  44.             o.62ReadSave    \
  45.             o.UnRedirect    \
  46.             o.WimpPlot    \
  47.  
  48.  
  49. LibName        =    Sprite
  50.  
  51.  
  52.  
  53. # Template makefile to make all .o files
  54. # for a DeskLib sublibrary. Compilation 
  55. # is for static linking with client
  56. # applications (ie not cc -zM but
  57. # _DeskLib_SDLS_CLIENT is predefined).
  58.  
  59. # The macro $(ObjectFiles) should be set at the 
  60. # start of this file, to be a space-separated
  61. # list of object files.
  62. # This is done by 'Makatic'.
  63.  
  64. # The macro $(LibName) should also be set at the 
  65. # start of this file, to be the name of the 
  66. # DeskLib sublibrary.
  67.  
  68. # Compiler flags, These can be anything. 
  69. # All essential flags (eg CC -zM
  70. # are included in the macro $(CC).
  71. #
  72. CCFlags        =    -fahi $(CCExtra) -depend !Depend -throwback -D_DeskLib_SDLS_CLIENT -D_DeskLib_$(LibName) -I,C:
  73. ASMFlags    =    -Stamp -NoCache -CloseExec -Quit $(ASMExtra)
  74.  
  75. CC        =    cc -c $(CCFlags)
  76. ASM        =    ObjAsm $(ASMFlags)
  77.  
  78.  
  79. # -------------------------------------------------------
  80. # Everything below here should probably not be changed...
  81. # -------------------------------------------------------
  82.  
  83. # Here's what we want to make...
  84. #
  85. All:    $(ObjectFiles)
  86.  
  87.  
  88. VPATH = @.^
  89.  
  90. .SUFFIXES:    .o .c .s
  91.  
  92. .c.o:
  93.     $(CC) -o $@ $<
  94.  
  95. .s.o:
  96.     $(ASM) $(ASMFlags) -from $< -to $@
  97.  
  98.  
  99.  
  100. # Dynamic dependencies:
  101. o.LoadFile:    ^.c.LoadFile
  102. o.LoadFile:    DeskLib:h.Core
  103. o.LoadFile:    DeskLib:h.File
  104. o.LoadFile:    DeskLib:h.SWI
  105. o.LoadFile:    DeskLib:h.Sprite
  106. o.LoadFile:    DeskLib:h.Wimp
  107. o.LoadFile:    DeskLib:h.Coord
  108. o.LoadFiles:    ^.c.LoadFiles
  109. o.LoadFiles:    DeskLib:h.Core
  110. o.LoadFiles:    DeskLib:h.File
  111. o.LoadFiles:    DeskLib:h.SWI
  112. o.LoadFiles:    DeskLib:h.Sprite
  113. o.LoadFiles:    DeskLib:h.Wimp
  114. o.LoadFiles:    DeskLib:h.Coord
  115. o.MemSize:    ^.c.MemSize
  116. o.MemSize:    DeskLib:h.Sprite
  117. o.MemSize:    DeskLib:h.Core
  118. o.MemSize:    DeskLib:h.Wimp
  119. o.MemSize:    DeskLib:h.Coord
  120. o.MemSize:    DeskLib:h.SWI
  121. o.MemSizeIcn:    ^.c.MemSizeIcn
  122. o.MemSizeIcn:    DeskLib:h.Sprite
  123. o.MemSizeIcn:    DeskLib:h.Core
  124. o.MemSizeIcn:    DeskLib:h.Wimp
  125. o.MemSizeIcn:    DeskLib:h.Coord
  126. o.MemSizeIcn:    DeskLib:h.SWI
  127.